5ccccae5c608b2e8592ff322a7ed0de280d23391,source/com/intellij/openapi/paths/PsiDynaReference.java,PsiDynaReference,bindToElement,#PsiElement#,103

Before Change


  }

  public PsiElement bindToElement(PsiElement element) throws IncorrectOperationException{
    return chooseReference().bindToElement(element);
  }

  public boolean isReferenceTo(PsiElement element){

After Change


  }

  public PsiElement bindToElement(PsiElement element) throws IncorrectOperationException{
    final PsiReference reference = chooseReference();
    if (reference != null) {
      return reference.bindToElement(element);
    }
    return myElement;